home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / gen_bbs / t-isout2.zip / UNPACK.BAT < prev   
DOS Batch File  |  1996-12-16  |  832b  |  36 lines

  1.  
  2. REM ---------------------------------------------------------------------------
  3. REM         ENCRYPT YOUR MAIL AUTOMATICALLY BY BO BENDTSEN (C) 1996
  4. REM ---------------------------------------------------------------------------
  5.  
  6. REM
  7. REM This file could be used when you have agreed sending encrypted files
  8. REM Please note that you should check your unpacker and decryption program
  9. REM for error-handling.
  10. REM
  11.  
  12. Set Inbound=K:\BBS\IN
  13.  
  14. If Exist %Inbound%\PACK01.ZIP Goto Unpack01
  15.  
  16. :TossMail
  17.  K:
  18.  Cd \BBS\GECHO
  19.  Gecho Toss Scan Pack
  20.  Goto End
  21.  
  22. REM
  23. REM First we unpack using our archive password. Then we decrypt the files
  24. REM and process with normal tossing.
  25. REM
  26.  
  27. :Unpack01
  28.  Pkunzip -ed -o -sPASSWORD PACK01.ZIP 3C4EA0E4.*
  29.  for %a in (3C4EA0E4.*) do PGP -d -p %%a
  30.  Goto TossMail
  31.  
  32. :End
  33.  
  34. Set Inbound=
  35.  
  36.